@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css?family=Cairo');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Reset box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Apply general styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Hide horizontal overflow */
}


/* #scroll-logo {
  position: fixed;
  top: 0px;
  left: 0px;
  display: block;
  opacity: 1;
  z-index: 9;
}

#scroll-logo img {
  width: 50px;
  height: auto;
} */



/* Navbar Styles */
nav {
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  /* Ensure the navbar is above the dark overlay */
  position: relative;
  /* Ensure it stays in the document flow */
}

.logo-container {
  display: flex;
  align-items: center;
}

.watermark {
  height: 24px;
  margin-right: 3px;
  opacity: .5;
}

.logo-icon {
  height: 24px;
  width: auto;
}

nav .logo {
  width: 200px;
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}

nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  color: #c6b069;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #ffffff;
  /* old #1f1f1f */
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 3;
}

.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}

.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

@media screen and (max-width: 980px) {
  .hamburger {
    display: block;
  }

  nav ul {
    display: none;
  }
}

/* Home Banner Container Styles */
.home-banner-container {
  background-image: url('/images/home-1.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.home-banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(47, 39, 39, 0.611);
  z-index: 1;
}

/* home banner style ended */


/* carousel style starting */

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

.carousel-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.carousel-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 15px;
}

.carousel-content button {
  font-size: 1.2rem;
  padding: 10px 30px;
  background-color: #c6b069;
  border: none;
  color: white;
}

.carousel-content button:hover {
  border: 1px solid white;
  color: white;
}



@media (max-width: 768px) {
  .carousel-content {
    width: 300px;
  }

  .carousel-content h1 {
    font-size: 2rem;
    /* Adjust font size for smaller screens */
  }

  .carousel-content button {
    font-size: 1rem;
    /* Adjust button size for smaller screens */
    padding: 8px 20px;
    /* Adjust button padding for smaller screens */
  }
}


/* carousel style ending */


/* home about us styles */


.home-about-container {
  background-color: #c6b069;
}

.home-about-header {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: white;
}

.home-about-content {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 24px;
  font-size: 15px;
  color: white;
}


/* home about us style ends */


/* turf section style started */


.home-venue-container {
  text-align: center;
}

.home-venue-header {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 30px;
}

.home-venue-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 24px;
  font-size: 15px;
}

.venue-image {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.venue-btn {
  background-color: #c6b069;
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  padding: 15px;
  border-radius: 5px;
}


.venue-content .explore-turf {
  padding: 15px;
  background-color: #c6b069;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  color: white;
}




/* turf section style ended */



/* licences style starting */

.license-container {
  background-color: #c6b069;
  min-height: 500px;
  margin-bottom: 50px;
}


.licences-title {
  text-align: center;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.licences-title h2 {
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 10px;
  /* Darker color for better readability */
}

.list-container {
  width: fit-content;
  /* Adjust as needed */
  margin: 0 auto;
  /* Centers the list horizontally */
  padding: 0;
  /* Remove default padding */
  list-style-type: none;
  /* Remove bullet points */
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  color: black;
  font-family: "Cairo";
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  /* Start slightly below its final position */
  transition: opacity 0.8s ease, transform 0.8s ease;
  cursor: pointer;
}

.list-item:hover {
  color: #c6b069;
  background-color: black;

}

.list-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.verify-btn {
  width: 23px;
  height: 23px;
  margin-right: 3px;
}


/* licences style ended */


/* services style starting */


.service-section-container {
  background-color: #c6b069;
  padding-bottom: 100px;
}

.service-header-container {
  text-align: center;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-header-container h2 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 600;
}

.service-box-parent {
  gap: 18px;
  justify-content: center;
}

.service-box {
  width: 368px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-box:hover {
  background-color: #000;

}

.service-title {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 5px;
}

.service-title h6 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-box:hover .service-title h6 {
  color: #c6b069;
  /* Color change on hover */
}

.service-title-icon {
  margin-right: 8px;
  transition: color 0.3s ease;
}

.service-box:hover .service-title-icon .fa-wand-magic-sparkles {
  color: #c6b069;
  /* Color change on hover */
}

.service-content {
  margin-top: 10px;
  margin-left: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 15px;
  transition: color 0.3s ease;
}

.service-box:hover .service-content p {
  color: #a8a8a8;
  /* Color change on hover */
}


@media (max-width: 768px) {
  .services-box-container {
    padding: 25px;

  }

  .service-box-parent {
    display: grid;
    grid-template-columns: auto;
    /* Single column layout on smaller screens */
  }

  .service-box {
    width: 350px;
  }

  .service-title h6 {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
  }
}


/* services style ended */


#myBtn {
  position: fixed;
  bottom: -80px;
  /* Hide below view */
  right: 15px;
  z-index: 99;
  border: none;
  outline: none;
  border-radius: 50%;
  background-color: red;
  color: white;
  cursor: pointer;
  text-align: center;
  width: 50px;
  padding: 15px;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

#myBtn.showbtn {
  bottom: 20px;
  /* Show in view */
  opacity: 1;
}

#myBtn:hover {
  background-color: #555;
}

#whtsp-btn {
  position: fixed;
  bottom: -80px;
  /* Hide below view */
  right: 15px;
  /* Adjust as needed to avoid overlap with #myBtn */
  z-index: 99;
  border: none;
  outline: none;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  cursor: pointer;
  text-align: center;
  width: 50px;
  padding: 15px;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

#whtsp-btn.showwhtsp {
  bottom: 80px;
  /* Show in view */
  opacity: 1;
}

#whtsp-btn:hover {
  background-color: #555;
}



/* team styles start*/


.team {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.team .team-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  height: 275px;
  width: 275px;
  cursor: pointer;
}

.team .team-img {
  position: relative;
  height: 74%;
  /* Adjust the height to your preference */
}

.team .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  /* Adjust the vertical position as needed */
}


.team .team-text {
  position: relative;
  padding: 8px 8px;
  text-align: center;
  background: #030f27;
  transition: .5s;
  height: 26%;
  /* Adjust the height to your preference */
}

.team .team-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fdbe33;
  transition: .5s;
}

.team .team-text p {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 13px;
  color: #ffffff;
}

.team .team-item:hover .team-text {
  background: #fdbe33;
}

.team .team-item:hover .team-text h2 {
  color: #030f27;
  letter-spacing: 1px;
}

.team .team-social {
  position: absolute;
  width: 100px;
  top: 0;
  left: -50px;
  display: flex;
  flex-direction: column;
  font-size: 0;
}

.team .team-social a {
  position: relative;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
  background: #00acee;
  left: 50px;
  transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
  background: #3b5998;
  left: 50px;
  transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
  background: #0e76a8;
  left: 50px;
  transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
  background: #3f729b;
  left: 50px;
  transition: .3s .3s;
}

.section-header {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

.section-header p {
  font-family: "Poppins", sans-serif;
  color: #fdbe33;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  margin: 0;
  position: relative;
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .team .team-item {
    height: 325px;
    /* Adjust height for screens <= 1199px */
  }

  .team .team-text {
    padding: 12px 12px;
    /* Reduce padding for smaller screens */
  }

  .section-header h2 {
    font-size: 40px;
    /* Adjust font size for smaller screens */
  }
}

@media (max-width: 767.98px) {
  .team .team-item {
    height: 300px;
    /* Adjust height for screens <= 767px */
  }

  .section-header h2 {
    font-size: 30px;
    /* Adjust font size for smaller screens */
  }

  .team .team-img {
    position: relative;
    height: 75%;
    /* Adjust the height to your preference */
  }

  .team .team-text {
    position: relative;
    padding: 10px 10px;
    text-align: center;
    background: #030f27;
    transition: .5s;
    height: 25%;
    /* Adjust the height to your preference */
  }
}


/* team styles end*/



a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 60px 0;
  /* min-height: 100vh;*/
}

.footer {
  background-color: #ebebeb;
  padding-top: 80px;
}

@media only screen and (max-width:768px) {
  .single_footer {
    margin-bottom: 15px;
  }
}

.single_footer h4 {
  font-family: "Poppins", sans-serif;
  color: #000000;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

.single_footer h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background: #fff;
  margin-top: 20px;
}

.single_footer p {
  color: #050505;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.single_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}


.single_footer ul li a {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 15px;
  text-transform: capitalize;
}

.single_footer ul li a:hover {
  color: #c6b069;
}

.single_footer_address ul li {
  color: #fff;
}

.single_footer_address ul li span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.contact_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.subscribe {
  display: block;
  position: relative;
  margin-top: 15px;
  width: 100%;
}

.subscribe__input {
  background-color: #ffffff;
  border: 1px solid black;
  border-radius: 5px;
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: 500;
  height: 60px;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 0 150px 0 20px;
  text-align: center;
  text-transform: capitalize;
  width: 100%;
}

@media only screen and (max-width:768px) {
  .subscribe__input {
    padding: 0 50px 0 20px;
  }
}

.subscribe__btn {
  background-color: transparent;
  border-radius: 0 25px 25px 0;
  color: #01c7e9;
  cursor: pointer;
  display: block;
  font-size: 20px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}

.subscribe__btn i {
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width:768px) {
  .subscribe__btn {
    right: 0px;
  }
}

.subscribe__btn:hover i {
  color: #ff3666;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.social_profile {
  margin-top: 40px;
}

.social_profile ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.social_profile ul li {
  float: left;
}

.social_profile ul li a {
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin: 0px 5px;
  font-size: 18px;
  color: #000000;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width:768px) {
  .social_profile {
    margin-top: 0;
  }

  .social_profile ul li a {
    width: 20px;
    height: 40px;
    line-height: 40px;
  }
}

@media only screen and (max-width:480px) {
  .social_profile ul li a {
    width: 20px;
    height: 40px;
    line-height: 40px;
  }
}

.social_profile ul li a:hover {
  background: #c6b069;
  border: 1px solid #ff3666;
  color: #fff;
  border: 0px;
}

.copyright {
  margin-top: 70px;
  padding-top: 40px;
  color: #000000;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.copyright a {
  color: #c6b069;
  transition: all 0.2s ease 0s;
}

.copyright a:hover {
  color: #ff3666;
}


@media only screen and (max-width:768px) {
  .copyright {
    margin-top: 0;
    padding-top: 5px;
  }
}





/* mission and vission styles */


.ms-banner-container {
  background-image: url('/images/projects/project-19.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
}

.ms-banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(47, 39, 39, 0.611);
  z-index: 1;
}


.mv-txt {
  font-size: 48px;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

.breadcrumb {
  display: inline-block;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb-item {
  display: inline;
  font-size: 18px;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ccc;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding: 0 10px;
  color: #fff;
}



.values-container {
  background-color: #c6b069;
  min-height: 500px;
  margin-bottom: 50px;
}


.values-title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-title h2 {
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 10px;
  /* Darker color for better readability */
}

.value-list-container {
  width: fit-content;
  /* Adjust as needed */
  margin: 0 auto;
  /* Centers the list horizontally */
  padding: 0;
  /* Remove default padding */
  list-style-type: none;
  /* Remove bullet points */
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  color: black;
  font-family: "Cairo";
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  /* Start slightly below its final position */
  transition: opacity 0.8s ease, transform 0.8s ease;
  cursor: pointer;
}

.visible-values {
  opacity: 1;
  transform: translateY(0);
}

.value-item:hover {
  color: #c6b069;
  background-color: black;

}

.verify-btn {
  width: 23px;
  height: 23px;
  margin-right: 3px;
}

.value-btn {
  width: 23px;
  height: 23px;
  margin-right: 3px;
}

.values-list:hover .fa-gem {
  color: white;
}




.ms-container {
  padding: 15px;
  display: flex;
  justify-content: center;
}


.ms-box {
  margin-top: 50px;
  padding: 25px;
  min-height: 500px;
  background-image: url('/images/contractor-holding-helmet.jpg');
  background-repeat: no-repeat;
  background-position: 110% 90%;
  background-size: auto auto;
  padding-right: 150px;
  gap: 10px;
  -webkit-box-shadow: 0px 0px 14px -5px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0px 0px 14px -5px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0px 14px -5px rgba(0, 0, 0, 0.26);
}


.ms-content-container {
  width: 400px;
  padding: 10px;
  cursor: pointer;
}

.ms-img-container {
  margin-left: 10px;
}

.ms-content {
  font-family: "Poppins", sans-serif;
  margin-left: 10px;
}



@media only screen and (max-width: 768px) {

  .mv-txt {
    font-size: 30px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .ms-box {
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    padding: 5px;
    gap: 0px;
  }

  .ms-content-container {
    width: 100%;
    /* Full width on smaller devices */
    max-width: 500px;
    /* Maximum width to keep it centered */
    margin: 0 auto;
    border: .5px solid black;
    border-radius: 10px;
  }

  .values-parent {
    margin: 0;
  }

  .values-list {
    margin-left: 0;
  }

  .value-img {
    display: none;
  }

  .card-container {
    margin-bottom: 25px;
  }
}